home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / DAYString / output < prev    next >
Text File  |  1995-06-12  |  2KB  |  43 lines

  1. string1 = "The first string.", length = 17.
  2. string2 = "01234567890123456789", length = 20.
  3. String1 + String2 = "The first string.01234567890123456789", length = 37.
  4. String1 = "The first string.", length = 17.
  5. string1!=string1: 0, string1!=string2: -1
  6. left5 = 01234 right5 = 56789 mid5to10 = 567890 mid6len5 = 67890
  7. Substrings from string1 and "first"...Left:"The " Right:"first string."
  8. Extract parts from "don:*:23:21:Don Yacktman:/LocalLibrary/Users/don:/bin/csh" delimiting with ':':
  9.     Part    #3 is "23"
  10.     Part   #10 is "(null pointer)"
  11. Return was nil.
  12.     First part is "don"
  13.     Last  part is "/bin/csh"
  14. Given:        /Net/darth/Users/don/Projects/daymisckit_proj/daymisckit-1/DAYString.m
  15.     Path is:  /Net/darth/Users/don/Projects/daymisckit_proj/daymisckit-1
  16. Filename is:  DAYString.m
  17. Carl's string: "   Hello, how are you?   ", length = 25
  18. Numwords: 4
  19. 3rd word: "are"
  20. trimmed: "Hello, how are you?"
  21. Numwords: 4
  22. Reversed: "?uoy era woh ,olleH"
  23. Reversed again: "Hello, how are you?"
  24. ToUpper:  "HELLO, HOW ARE YOU?"
  25. ToLower:  "hello, how are you?"
  26. Inserting "Oh! " at 0:  "Oh! hello, how are you?"
  27. Char at 0: 'O'
  28. ReplaceFrom 0to2 with "YOHO!":  "YOHO! hello, how are you?"
  29. spotOf 'o': 10
  30. spotOf 'o' nocase: 1
  31. rspotOf 'O': 3
  32. rspotOf 'O' nocase: 22
  33. 10th rspotOf 'O': -1
  34. replace "YOHO!" with "My!": "My! hello, how are you?"
  35. String now is "  Hello,   I    am  fine today.  Right?  "
  36. Squashed: "Hello, I am fine today.  Right?"
  37. endcmp "Right?": 0
  38. endcasecmp "RIGHT?": 0
  39. endcmp "RIGHT?": 1
  40. endcasecmp n:3 "nacHT?": 0
  41. replaceCharAt:0 with 'J': "Jello, I am fine today.  Right?"
  42. insertChar 'a' at 1: "Jaello, I am fine today.  Right?"
  43.